body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f0f4f8;
  color: #333;
  line-height: 1.6;
}

.page-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

header {
  text-align: center;
  padding: 40px 20px;
  background: #0072c6;
  color: white;
  border-radius: 0 0 20px 20px;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
}

/* Servicio destacado */
.service-highlight {
  background: linear-gradient(135deg, #32cd32, #1e7f1e);
  color: white;
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.service-highlight h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.service-highlight p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.btn-service {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(90deg, #ff7f50, #ff6347);
  color: white;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.3s;
}

.btn-service:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #ff6347, #ff7f50);
}

/* Beneficios */
.service-benefits {
  background: #ffe066;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: center;
  color: #003366;
}

.service-benefits h3 {
  margin-bottom: 20px;
  font-size: 2em;
}

.service-benefits ul {
  list-style: none;
  padding: 0;
}

.service-benefits ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* Otros servicios */
.cards-showcase {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.card-item {
  flex: 1 1 300px;
  padding: 30px 20px;
  border-radius: 15px;
  color: white;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card1 { background: linear-gradient(135deg, #1e90ff, #00bfff); }
.card2 { background: linear-gradient(135deg, #ff1493, #ff69b4); }
.card3 { background: linear-gradient(135deg, #ff7f50, #ff6347); }

.card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Botón volver */
.btn-back {
  display: inline-block;
  background: linear-gradient(90deg, #32cd32, #1e7f1e);
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 10px;
  transition: transform 0.2s, background 0.3s;
  margin: 0 auto 40px;
  display: block;
  width: fit-content;
}

.btn-back:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #1e7f1e, #32cd32);
}

/* Footer */
footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 20px;
}

